home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Strings.h
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #pragma once
-
- #ifndef __STRINGS__
- #define __STRINGS__
-
- #ifndef __TYPES__
- #include <Types.h>
- /* #include <ConditionalMacros.h> */
- /* #include <MixedMode.h> */
- /* #include <Traps.h> */
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- extern StringPtr c2pstr(char *aStr);
- extern pascal StringPtr C2PStr(Ptr cString);
- extern char *p2cstr(StringPtr aStr);
- extern pascal Ptr P2CStr(StringPtr pString);
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
-